2e6bb0ac3ec9faa4ce633b97b4a662a801986a02,src/main/java/morph/common/core/CommandMorph.java,CommandMorph,processCommand,#ICommandSender#String[]#,45

Before Change


			{
//				<demorph|clear|morphtarget> [player] [force (true/false)]
				icommandsender.addChatMessage(new ChatComponentText(EnumChatFormatting.GRAY.toString() + "/morph demorph [player] [force demorph even if offline (true/false)] - Makes a player demorph"));
				icommandsender.addChatMessage(new ChatComponentText(EnumChatFormatting.GRAY.toString() + "/morph clear [player] - Clears a player's morphs"));
				icommandsender.addChatMessage(new ChatComponentText(EnumChatFormatting.GRAY.toString() + "/morph morphtarget [player] - Tries to make the player morph the mob they're looking at"));
				icommandsender.addChatMessage(new ChatComponentText(EnumChatFormatting.GRAY.toString() + "/morph whitelist <player> - Adds a player to the morph skill whitelist, turning it on"));
				icommandsender.addChatMessage(new ChatComponentText(EnumChatFormatting.GRAY.toString() + "/morph unwhitelist <player> - Removes a player from the morph skill whitelist"));

After Change


            {
                //				<demorph|clear|morphtarget> [player] [force (true/false)]
                icommandsender.addChatMessage(new ChatComponentTranslation("morph.command.demorph").setChatStyle(new ChatStyle().setColor(EnumChatFormatting.GRAY)));
                icommandsender.addChatMessage(new ChatComponentTranslation("morph.command.clear").setChatStyle(new ChatStyle().setColor(EnumChatFormatting.GRAY)));
                icommandsender.addChatMessage(new ChatComponentTranslation("morph.command.morphtarget").setChatStyle(new ChatStyle().setColor(EnumChatFormatting.GRAY)));
                icommandsender.addChatMessage(new ChatComponentTranslation("morph.command.addtolist").setChatStyle(new ChatStyle().setColor(EnumChatFormatting.GRAY)));
                icommandsender.addChatMessage(new ChatComponentTranslation("morph.command.removefromlist").setChatStyle(new ChatStyle().setColor(EnumChatFormatting.GRAY)));